-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ESP32] Added new Matter Traces in esp32 platform for diagnosis #36873
Draft
pimpalemahesh
wants to merge
22
commits into
project-chip:master
Choose a base branch
from
pimpalemahesh:esp32/add_diagnostics
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
[ESP32] Added new Matter Traces in esp32 platform for diagnosis #36873
pimpalemahesh
wants to merge
22
commits into
project-chip:master
from
pimpalemahesh:esp32/add_diagnostics
+1,099
−12
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Working backend with metric, trace and counter diagnostics - Diagnostic interface implementation with ring buffer storage - Added option ENABLE_ESP_DIAGNOSTICS_TRACE in chip KConfig - Added required options for enabling matter diagnostic trace in project Kconfig - Enabled diagnostic trace for temperature-measurement-app example
- Resolve buffer related issues - Add store diagnostic call for trace_end and trace_instant - Update scoped macro - Remove extra namespace values, spaces and print statements - Remove evicthead call for circular buffer after read successful
- Resolve buffer issues - Use single buffer for store and retrieve of diagnostics - Resolve data loss issue
…essary comments, format files, namespace changes
pimpalemahesh
force-pushed
the
esp32/add_diagnostics
branch
from
December 17, 2024 11:49
4922c64
to
c8dde4c
Compare
pimpalemahesh
force-pushed
the
esp32/add_diagnostics
branch
from
December 17, 2024 13:28
c8dde4c
to
164cc2c
Compare
pimpalemahesh
force-pushed
the
esp32/add_diagnostics
branch
from
December 17, 2024 13:33
164cc2c
to
a3e478d
Compare
PR #36873: Size comparison from 4e44586 to da1f8b0 Full report (19 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, nrfconnect, qpg, stm32, tizen)
|
pimpalemahesh
force-pushed
the
esp32/add_diagnostics
branch
from
December 18, 2024 09:35
da1f8b0
to
4ac601c
Compare
PR #36873: Size comparison from b0d0614 to 4ac601c Full report (54 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, linux, nrfconnect, nxp, psoc6, qpg, stm32, telink, tizen)
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Problem:
Additional diagnostics are needed to improve the efficiency of debugging and monitoring on the ESP32 platform.
Change Overview:
Added BLE, WiFi, Heap and FreeRTOS Task snapshot related diagnostics in esp32 platform for diagnosis purpose.
Test:
Successfully retrieved the added diagnostics using the Platform Diagnostics Framework.